Passed
Push — master ( 139be6...b9ad79 )
by
unknown
09:22
created

selectors.ts ➔ byTestId   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
1
export function byTestId(testId: string) {
2
    return `[data-test-id="${testId}"]`;
3
}
4